Add Github workflow for running CI tests#159
Open
anamnavi wants to merge 17 commits into
Open
Conversation
Add Github Workflow for running CI tests
TravisEz13
reviewed
May 8, 2026
There was a problem hiding this comment.
Pull request overview
Adds GitHub Actions CI for the PowerShell Archive module while removing legacy Travis CI and AppVeyor configuration. The test suite is also refactored to move helper functions into a separate test module.
Changes:
- Adds a cross-platform GitHub Actions workflow to install Pester, run tests, and upload results.
- Removes legacy Travis CI/AppVeyor files.
- Extracts archive test helper functions into a new
.psm1module and imports it from the main test file.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/test.yml |
Adds GitHub Actions CI workflow for PowerShell tests. |
.travis.yml |
Removes legacy Travis CI configuration. |
TravisCI.ps1 |
Removes legacy Travis test runner script. |
appveyor.yml |
Removes legacy AppVeyor CI configuration. |
Tests/Pester.Commands.Cmdlets.Archive.Tests.ps1 |
Imports extracted helper module and adjusts test setup variables. |
Tests/Pester.Commands.Cmdlets.Archive.Tests.psm1 |
Adds extracted helper functions used by the Pester test suite. |
…null and iterated unexpected error is thrown
…le cmdlet -LiteralPath parameter is expected to be string triggering transformation error before param null check occurs
…n error should be thrown
…step that runs tests
Member
Author
|
@copilot review |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Summary
Add Github workflow for running CI tests, and remove old TravisCI files.
PR Context